#grad {
    background-image: linear-gradient(rgb(39, 39, 39), rgb(9, 9, 9));
}
body {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin-left: 0%;
    margin-right: 0%;
    text-shadow: 3px 3px 4px black;
}
h1 {
    background-color: black;
    box-shadow: 5px 5px 4px black;
    text-shadow: none;
}
h2 {
    background-color: rgb(56, 56, 56);
    box-shadow: 5px 5px 4px black;
}
#invis {
    opacity: 0;
}
@keyframes rotate {
    0% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    100% { transform: rotate(5deg); }
}

#logo {
    width: 200px;
    height: 200px;
    animation-name: rotate;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}
#list {
    background-color: rgb(39, 39, 39);
    font-size: small;
    color: rgb(60, 60, 60);
    box-shadow: none;
    text-shadow: none;

}
#info {
    background-color: black;
    font-weight: normal;
    margin-top: 0%;
    margin-bottom: 0%;
}
a:link {
    color: rgb(136, 171, 182);
}
a:visited {
    color: rgb(75, 75, 75);
}
a:hover {
    font-size: medium;
    color: lightblue;   
}
audio {
    box-shadow: 5px 5px 4px black;
    border: 10px;
    border-style: solid;
    border-color: black;
    background-color: black;
}
img {
    transform: scale(0.75);
    transform-origin: center;
}
#not_found {
  background-color: rgb(39, 39, 39);
}
